a = 150
f = 33
if f > a:
  print("f is greater than a")
elif a == f:
  print("a and f are equal")
else:
  print("a is greater than f")